home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Freeware / ReNamer 5.40 / ReNamer.exe / {app} / Scripts / Import DLL functions.pas < prev    next >
Pascal/Delphi Source File  |  2007-02-13  |  234b  |  10 lines

  1. function GetTickCount: Longint;
  2.   external 'GetTickCount@kernel32.dll stdcall';
  3.  
  4. procedure Sleep(Milliseconds: Cardinal);
  5.   external 'Sleep@kernel32.dll stdcall';
  6.  
  7. begin
  8.   FileName := IntToStr(GetTickCount);
  9.   Sleep(10);
  10. end.